home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / doom / quake1.zip / SPOT_V1.ZIP / SPOT.TXT < prev    next >
Text File  |  1996-08-15  |  5KB  |  129 lines

  1. WHAT THIS IS:
  2.  
  3. I started with the friend code from Jeff Epler (jepler@inetnebr.com, 
  4. Synger on IRC (linuxnet and undernet, primarily)) and pretty much did a 
  5. rework to provide the following added features:
  6.  
  7. - You can give your pets the following commands:
  8.     Come.          (impulse 57) Your pets will stop attacking (if they
  9.              are) and come to you.  Normally, your pets follow
  10.              you around.
  11.     Attack.     (impulse 56) You must be "looking" at a monster.   
  12.             The closest monster will be chosen.
  13.     Play dead.      (impulse 55) This gibs all your pets.  This is 
  14.             sometimes necessary because Shamblers can't always 
  15.             get through some doors.
  16. - Monsters with the FL_FRIENDLY flag check to see if they already have an 
  17.   owner and will not automatically acquire a new master
  18. - You must "resurrect" a dead monster as a "pet."  (affectionately known as
  19.   Spot).
  20.  
  21.     Big Note:      I added Jeff's "solid monsters" code in here too.  
  22.             This was necessary since the FindRadius builtin 
  23.             ignores "non-solid" entities.
  24.  
  25. - Resurrecting Spot takes the following toll on your health
  26.     Dog - 25 hp.
  27.     Soldier - 50 hp
  28.     Fiend - 90 hp
  29.     Shambler - 99 hp
  30.  
  31.     Note:     this was to provide some balance for the ability to 
  32.         resurrect monsters.  The Fiends and  Shamblers are 
  33.         formidable pets and so have a high cost  :)
  34.  
  35. - You can only have one pet.  
  36.  
  37.     Note:    the code is in there to allow for multiple pets, but 
  38.           remember... your pets are pretty dumb and the commands 
  39.         affect all of them.  (i.e. they have a tendency to start 
  40.         fighting amongst themselves because they get in each other's
  41.         way.  They also have a tendency to get in your way.)  You'll
  42.         have to take out the one check (it's in weapons.qc) to allow
  43.         for multiple pets.
  44.     Note2:     I did have a lot of fun walking around with my personal army 
  45.         of 8 grunts :)
  46.  
  47. - You can't take your pets with you between levels.  I may add this in, 
  48.   but it will be difficult due to limitations in the engine.
  49. - Your pets will not hunt for monsters. They will, however, automatically 
  50.   attack any monster that attacks you.  This is no different than Jeff's 
  51.   code.
  52. - When you now "push" your pet, it will try to move sideways and get out of 
  53.   your way.
  54. - Dogs, Fiends, and Shamblers will attack corpses.  I about died laughing 
  55.   the first time I hit the attack key and my dog started tearing into the 
  56.   nearest body.  The grunts don't have a melee attack and so won't do 
  57.   anything to a corpse. This can be frustrating if you are trying to get
  58.   the grunt to attack a monster and he just stands there because a body is
  59.   closer to you and in your line of sight. :(  
  60. - In deathmatch or teamplay, unless you put the monsters back in you have 
  61.   no one to resurrect.  I'm working on the ability to resurrect dead players
  62.   for deathmatch and teamplay.
  63.  
  64. TO BE ADDED.
  65.  
  66. - Heal!      You can tell Spot to follow to your right side, left side,
  67.           behind you (very dangerous if your pet is a grunt or 
  68.         shambler) or in front of you.
  69. - Guard.      Stay Spot, stay!  You can toss a stick to an area (like 
  70.           in front of a door) and Spot will go to the stick and guard
  71.         the area and search out monsters.  Just pick up the stick to
  72.         have Spot resume following you around like a good puppy.
  73. - Fetch.      Scared to go in and get that box of shells?  Have Spot do
  74.           it!
  75. - Deathmatch and Teamplay stuff.
  76. - New textures for Spot.  
  77.         I am attempting to allow it to follow your
  78.           color code for deathmatch and teamplay.
  79. - A new item which grants you the ability to resurrect one pet per item.
  80.  
  81. WHEN WILL THEY BE ADDED
  82.  
  83. When it's done.  Hey, it works for id :)
  84.  
  85. HOW TO TRY THIS OUT:
  86.  
  87. Read howpatch.txt for details on how to use this patch file
  88.  
  89. Bind keys to:
  90.     'impulse 250' to resurrect a corpse as Spot.
  91.     'impulse 55' to give the play dead command.
  92.     'impulse 56' to give the attack monster command.
  93.     'impulse 57' to give the come here command.
  94.  
  95. ABOUT MY CODE:
  96.  
  97. I added a .pet and a .petlist property to all entities.  I reworked Jeff's 
  98. code so that the linking of multiple pets no longer has to spawn new 
  99. entities (a lot safer).  I ensure that all pets are killed when a pet dies,
  100. when you die, or when you exit a level.  I use FindRadius to find dead 
  101. monsters and to find monsters to attack.  Everything found must be in the
  102. players line of sight.
  103.  
  104. If you are standing on the corpse when you resurrect it, it will gib.
  105.  
  106. KNOWN PROBLEMS
  107.  
  108. This is untested in deathmatch and teamplay.  Code needs to be added so you
  109. don't get the frag for killing your own pet.  I'll need feedback for this 
  110. one since I only have a 14.4 modem and deathmatch is out.
  111.  
  112. THANKS TO
  113.  
  114. Jeff Epler, for his excellent friend code and solid monster code.
  115. id, for the game and all the openness about it.
  116.  
  117. DISCLAIMER
  118.  
  119. Use this hack at your own risk.  The writer of this hack takes no 
  120. responsibility for crashed games, unusable saves, or if Spot eats your 
  121. homework or gibs your mailman.
  122.  
  123. GIVE ME FEEDBACK:
  124.  
  125. Please mail me with your thoughts about this hack.
  126.  
  127. Joe Faske (Joebo)
  128. faske@ols.net
  129.